home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 13
/
AMIGAplus Sonderheft 13 (1998)(ICP)(DE)[!].iso
/
rexx
/
showlib.sirexx
< prev
next >
Wrap
Text File
|
1997-08-28
|
493b
|
29 lines
/* Select the library list, show the specified library (opening the
More window
Written by Eric Sauvageau.
USAGE: rx ShowLib.sirexx <library_name>
*/
options results
Parse Arg Library
address 'INSPECTOR.1'
/* Display libraries */
GetDisplay ; currentdisplay = result
If currentdisplay ~= 5 Then SetDisplay 5
/* Select the specified library */
SelectNode Name Library ; error = result
if error = "ERROR" then do
Say 'Cannot find '||Library||'!'
Exit 10
End
OpenMore